home *** CD-ROM | disk | FTP | other *** search
/ Champak 146 / (Vol 146) Jan 07 2012.iso / Games / scuba.swf / scripts / DefineButton2_352 / BUTTONCONDACTION on(release).as
Text File  |  2012-01-07  |  400b  |  19 lines

  1. on(release){
  2.    if(_root.gConstantsSet == true && _root.gInGame == true)
  3.    {
  4.       _root.gotoAndStop("resume");
  5.    }
  6.    else if(_root.gLevelChosen == true && _root.gPlayAgain == false)
  7.    {
  8.       _root.gotoAndStop("instructions");
  9.    }
  10.    else if(_root.gResumeFrame == null)
  11.    {
  12.       _root.gotoAndStop("endtitle");
  13.    }
  14.    else
  15.    {
  16.       _root.gotoAndStop("endscreens");
  17.    }
  18. }
  19.